hey every1,

i'm tryin to declare a vector of ints[]

i'm preparing strings of numbers each of 32 digits, each digit means somethin different so i need to access them individually.

Well VC++ doesn't like
Code:
 vector <int[32]> myInts(4);
gives me abuse like
Code:
 : error C2440: 'type cast' : cannot convert from 'int' to 'int [32]'
any1 got any ideas how i can get this together?

Cheers,


Rob.